001 /**
002 * Created by IntelliJ IDEA.
003 * User: Wei Wang
004 * Date: Apr 12, 2003
005 * Time: 11:42:49 PM
006 */
007
008 package EVolve.exceptions;
009
010 import EVolve.Scene;
011
012 public class WrongVersionException extends EVolveException{
013 public WrongVersionException(String version) {
014 super("The version of the configuration file is wrong\n" +
015 "Required: " + Scene.VERSION + "\n" +
016 "Found: " + version);
017 }
018 }